Skip to main content

RectanglePropertyHeight

Type

operator

Summary

The height of a rectangle value.

Syntax

the height of <mRect>

Description

The height of the rectangle.

note

Setting the height of a rectangle will resize it without moving the top edge, expanding or contracting from the bottom.

Parameters

NameTypeDescription

mRect

An expression which evaluates to a rectangle.

Examples

variable tRect
put rectangle [50,100,150,200] into tRect

// Store the height of the rectangle in a variable
variable tHeight
put the height of tRect into tHeight

// Increase the height of the rectangle
set the height of tRect to (tHeight + 10)
Thank you for your feedback!

Was this page helpful?